home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / utility / horst_2.zip / WHAT.DOC < prev   
Text File  |  1995-12-18  |  1KB  |  41 lines

  1. ------------------------------------------------------------------------
  2. WHAT    date/time check with errorlevel         (c) 1995 Horst Schaeffer
  3. ------------------------------------------------------------------------
  4.  
  5. Syntax: WHAT hour | minute | year | month | day | wday
  6.  
  7.  
  8.     WHAT.COM checks the current date and time, and returns the value of
  9.     what you requested as errorlevel.
  10.  
  11.     Request keywords:
  12.  
  13.         hour              0..24
  14.         minute            0..60
  15.         year              0..99
  16.         month             1..12
  17.         Day               1..31
  18.         Wday              0 (Sun) .. 6 (Sat)
  19.  
  20.     The first letter of a keyword will do, except for minute and month
  21.     (at least 2 required). The rest is ignored anyway.
  22.     Case ignored. Help info and errorlevel 255 if invalid or missing
  23.     keyword.
  24.  
  25. Examples:
  26.  
  27.         WHAT hour
  28.         if not errorlevel 12 goto MORNING
  29.  
  30.         WHAT wday
  31.         for %%a in (0 1 2 3 4 5 6) do if errorlevel %%a goto DAY_%%a
  32.  
  33.         WHAT day
  34.         if errorlevel 8 goto CONT
  35.         WHAT wday
  36.         if errorlevel 2 goto CONT
  37.         if not errorlevel 1 goto CONT
  38.         ECHO This is the first Monday of the month
  39.  
  40. = 17 MAY 1995
  41.